home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / listings / v_09_01 / 9n01091a < prev    next >
Text File  |  1990-11-04  |  141b  |  15 lines

  1. ----------
  2.  
  3. Listing 4
  4.  
  5. struct s
  6.     {
  7.     enum e {X, Y} b;
  8.     struct t {int i;} a;
  9.     };
  10.  
  11. enum e ee = Y;
  12. struct t tt;
  13. const int X = 10;
  14.  
  15.